home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Graphics_Utils / Video Easel / Scripts / Startup.rexx < prev    next >
OS/2 REXX Batch file  |  1998-06-24  |  841b  |  25 lines

  1. /*************************************************************************
  2.  **                                                                     **
  3.  ** The Video-Easel Startup-Script                                      **
  4.  ** Put REXX-commandos to be executed at startup here...                **
  5.  **  © THOR 1995                                                        **
  6.  *************************************************************************/
  7.  
  8. /* Supply this library for drawcircle... */
  9. call addlib('rexxmathlib.library',0,-30,0) 
  10.  
  11. 'addrxmenu' 'drawcircle.rexx' '"Draw Circle"'
  12. 'addrxmenu' 'importxlife.rexx' '"Import XLife..."'
  13.  
  14. /* Produce nicer title... */
  15.  
  16. 'offverify'
  17. 'openapp' 'Title'
  18. 'waitcomplete'
  19. 'openpic' 'Title.pic'
  20. 'waitcomplete'
  21.  
  22. 'onverify'
  23. 'menu' 'Project' 'About'
  24. /* Add more menus or other rexx-commandos here... */
  25.